home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / python2.4 / site-packages / pygtk.py-2.0 < prev    next >
Text File  |  2006-01-20  |  3KB  |  85 lines

  1. # -*- Mode: Python; py-indent-offset: 4 -*-
  2. # pygtk - Python bindings for the GTK+ widget set.
  3. # Copyright (C) 1998-2002  James Henstridge
  4. #
  5. #   pygtk.py: pygtk version selection code.
  6. #
  7. # This program is free software; you can redistribute it and/or modify
  8. # it under the terms of the GNU General Public License as published by
  9. # the Free Software Foundation; either version 2 of the License, or
  10. # (at your option) any later version.
  11. #
  12. # This program is distributed in the hope that it will be useful,
  13. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  15. # GNU General Public License for more details.
  16. #
  17. # You should have received a copy of the GNU General Public License
  18. # along with this program; if not, write to the Free Software
  19. # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
  20. # USA
  21.  
  22. import fnmatch
  23. import glob
  24. import os
  25. import sys
  26.  
  27. __all__ = ['require']
  28.  
  29. _pygtk_dir_pat = 'gtk-[0-9].[0-9]'
  30.  
  31. _pygtk_required_version = None
  32.  
  33. def _get_available_versions():
  34.     versions = {}
  35.     for dir in sys.path:
  36.         if not dir: 
  37.           dir = os.getcwd()
  38.             
  39.         if not os.path.isdir(dir):
  40.             continue
  41.         
  42.         # if the dir is a pygtk dir, skip it
  43.         if fnmatch.fnmatchcase(os.path.basename(dir), _pygtk_dir_pat):
  44.             continue  
  45.         
  46.         for filename in glob.glob(os.path.join(dir, _pygtk_dir_pat)):
  47.             pathname = os.path.join(dir, filename)
  48.  
  49.             # skip non directories
  50.             if not os.path.isdir(pathname):
  51.                 continue
  52.             
  53.             # skip empty directories
  54.             if not os.listdir(pathname):
  55.                 continue
  56.             
  57.         if not versions.has_key(filename[-3:]):
  58.                 versions[filename[-3:]] = pathname
  59.     return versions
  60.  
  61. def require(version):
  62.     global _pygtk_required_version
  63.  
  64.     if _pygtk_required_version != None:
  65.         assert _pygtk_required_version == version, \
  66.                "a different version of gtk was already required"
  67.         return
  68.  
  69.     assert not sys.modules.has_key('gtk'), \
  70.            "pygtk.require() must be called before importing gtk"
  71.  
  72.     versions = _get_available_versions()
  73.     assert versions.has_key(version), \
  74.            "required version '%s' not found on system" % version
  75.  
  76.     # remove any pygtk dirs first ...
  77.     for dir in sys.path:
  78.         if fnmatch.fnmatchcase(os.path.basename(dir), _pygtk_dir_pat):
  79.             sys.path.remove(dir)
  80.  
  81.     # prepend the pygtk path ...
  82.     sys.path.insert(0, versions[version])
  83.     
  84.     _pygtk_required_version = version
  85.